home *** CD-ROM | disk | FTP | other *** search
/ Erotic Games: Memory / Erotic Games: Memory.iso / mac / air_installers / AdobeAIR.exe / setup.swf / scripts / mx / events / DragEvent.as < prev    next >
Text File  |  2009-02-12  |  2KB  |  58 lines

  1. package mx.events
  2. {
  3.    import flash.events.Event;
  4.    import flash.events.MouseEvent;
  5.    import mx.core.DragSource;
  6.    import mx.core.IUIComponent;
  7.    import mx.core.mx_internal;
  8.    
  9.    use namespace mx_internal;
  10.    
  11.    public class DragEvent extends MouseEvent
  12.    {
  13.       
  14.       public static const DRAG_DROP:String = "dragDrop";
  15.       
  16.       public static const DRAG_COMPLETE:String = "dragComplete";
  17.       
  18.       public static const DRAG_EXIT:String = "dragExit";
  19.       
  20.       public static const DRAG_ENTER:String = "dragEnter";
  21.       
  22.       public static const DRAG_START:String = "dragStart";
  23.       
  24.       mx_internal static const VERSION:String = "3.0.0.0";
  25.       
  26.       public static const DRAG_OVER:String = "dragOver";
  27.        
  28.       
  29.       public var draggedItem:Object;
  30.       
  31.       public var action:String;
  32.       
  33.       public var dragInitiator:IUIComponent;
  34.       
  35.       public var dragSource:DragSource;
  36.       
  37.       public function DragEvent(param1:String, param2:Boolean = false, param3:Boolean = true, param4:IUIComponent = null, param5:DragSource = null, param6:String = null, param7:Boolean = false, param8:Boolean = false, param9:Boolean = false)
  38.       {
  39.          super(param1,param2,param3);
  40.          this.dragInitiator = param4;
  41.          this.dragSource = param5;
  42.          this.action = param6;
  43.          this.ctrlKey = param7;
  44.          this.altKey = param8;
  45.          this.shiftKey = param9;
  46.       }
  47.       
  48.       override public function clone() : Event
  49.       {
  50.          var _loc1_:DragEvent = new DragEvent(type,bubbles,cancelable,dragInitiator,dragSource,action,ctrlKey,altKey,shiftKey);
  51.          _loc1_.relatedObject = this.relatedObject;
  52.          _loc1_.localX = this.localX;
  53.          _loc1_.localY = this.localY;
  54.          return _loc1_;
  55.       }
  56.    }
  57. }
  58.